home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef audiomain_bcbxH
- #define audiomain_bcbxH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\Buttons.hpp>
- #include <vcl\Dialogs.hpp>
- #include <vcl\MPlayer.hpp>
- #include "audioc.h"
- //---------------------------------------------------------------------------
- class TGUIForm : public TForm
- {
- __published: // IDE-managed Components
- TSpeedButton *SpeedButton1;
- TLabel *Label1;
- TOpenDialog *OpenDialog;
- TSaveDialog *SaveDialog;
- TLabel *Label2;
- TSpeedButton *SpeedButton2;
- TLabel *Label3;
- TLabel *Label4;
- TButton *ProcessBtn;
- TButton *SaveBtn;
- TButton *QuitBtn;
- TEdit *InFileEdit;
- TEdit *OutFileEdit;
- TEdit *RevDelEdit;
- TEdit *RevAmpEdit;
- void __fastcall SpeedButton1Click(TObject *Sender);
- void __fastcall ProcessBtnClick(TObject *Sender);
- void __fastcall SpeedButton2Click(TObject *Sender);
- void __fastcall QuitBtnClick(TObject *Sender);
- void __fastcall SaveBtnClick(TObject *Sender);
- void __fastcall FormDestroy(TObject *Sender);
-
- private: // User declarations
- bool AudioInUse;
- AudioC *Wav;
- AudioC *newwave;
- public: // User declarations
- __fastcall TGUIForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TGUIForm *GUIForm;
- //---------------------------------------------------------------------------
- #endif
-